home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gp_os9.c < prev    next >
C/C++ Source or Header  |  1995-11-02  |  3KB  |  139 lines

  1. /* Copyright (C) 1989, 1995 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gp_os9.c */
  20. /* OSK-specific routines for Ghostscript */
  21. #include "string_.h"
  22. #include "gx.h"
  23. #include "gp.h"
  24. #include "time_.h"
  25. #include <signal.h>
  26. #include <stdlib.h>    /* for exit */
  27. #include <sys/param.h>    /* for MAXPATHLEN */
  28.  
  29. /* popen isn't POSIX-standard, so we declare it here. */
  30. extern FILE *popen();
  31. extern int pclose();
  32.  
  33. int interrupted;
  34.  
  35. /* Forward declarations */
  36. private void signalhandler(P1(int));
  37. private FILE *rbfopen(P2(char*, char*));
  38.  
  39. /* Do platform-dependent initialization */
  40. void
  41. gp_init(void)
  42. {    intercept(signalhandler);
  43. }
  44.  
  45. /* Do platform-dependent cleanup. */
  46. void
  47. gp_exit(int exit_status, int code)
  48. {
  49. }
  50.  
  51. /* Exit the program. */
  52. void
  53. gp_do_exit(int exit_status)
  54. {    exit(exit_status);
  55. }
  56.  
  57. private void
  58. signalhandler(int sig)
  59. {    clearerr(stdin);
  60.     switch(sig) {
  61.         case SIGINT:
  62.         case SIGQUIT:
  63.             interrupted = 1;
  64.             break;
  65.         case SIGFPE:
  66.             interrupted = 2;
  67.             break;
  68.         default:
  69.             break;
  70.     }
  71. }
  72.  
  73. /* ------ Date and time ------ */
  74.  
  75. /* Read the current time (in seconds since Jan. 1, 1980) */
  76. /* and fraction (in nanoseconds). */
  77. #define PS_YEAR_0 80
  78. #define PS_MONTH_0 1
  79. #define PS_DAY_0 1
  80. void
  81. gp_get_realtime(long *pdt)
  82. {
  83.     long date, time, pstime, psdate, tick;
  84.     short day;
  85.  
  86.     _sysdate(0, &time, &date, &day, &tick);
  87.     _julian(&time, &date);
  88.         
  89.     pstime = 0;
  90.     psdate = (PS_YEAR_0 << 16) + (PS_MONTH_0 << 8) + PS_DAY_0;
  91.     _julian(&pstime, &psdate);
  92.         
  93.     pdt[0] = (date - psdate)*86400 + time;
  94.     pdt[1] = 0;
  95.     
  96. #ifdef DEBUG_CLOCK
  97.     printf("pdt[0] = %ld  pdt[1] = %ld\n", pdt[0], pdt[1]);
  98. #endif
  99. }
  100.  
  101. /* Read the current user CPU time (in seconds) */
  102. /* and fraction (in nanoseconds).  */
  103. void
  104. gp_get_usertime(long *pdt)
  105. {    return gp_get_realtime(pdt);    /* not yet implemented */
  106. }
  107.  
  108. /* ------ Printer accessing ------ */
  109.  
  110. /* Open a connection to a printer.  A null file name means use the */
  111. /* standard printer connected to the machine, if any. */
  112. /* "|command" opens an output pipe. */
  113. /* Return NULL if the connection could not be opened. */
  114. FILE *
  115. gp_open_printer(char *fname, int binary_mode)
  116. {    return
  117.       (strlen(fname) == 0 ?
  118.        gp_open_scratch_file(gp_scratch_file_name_prefix, fname, "w") :
  119.        fname[0] == '|' ?
  120.        popen(fname + 1, "w") :
  121.        rbfopen(fname, "w"));
  122. }
  123.  
  124. FILE *
  125. rbfopen(char *fname, char *perm)
  126. {    FILE *file = fopen(fname, perm);
  127.     file->_flag |= _RBF;
  128.     return file;
  129. }
  130.  
  131. /* Close the connection to the printer. */
  132. void
  133. gp_close_printer(FILE *pfile, const char *fname)
  134. {    if ( fname[0] == '|' )
  135.         pclose(pfile);
  136.     else
  137.         fclose(pfile);
  138. }
  139.